Wiki

Clone wiki

inf225public / glossary / LR parser

[Alphabetical Index | Tag Index]

LR parser

A Bottom-up parser that can handle deterministic context-free languages in linear time. Common variantes are LALR parsers and SLR parsers. It reads its input in one direction (left-to-right) and produces a rightmost Derivation, hence the name LR.

[Wikipedia]

Updated